Setting Up Document SearchKeyotiConfiguring Keyoti SearchTriaster's preferred search utility is Keyoti Search. Keyoti has the following advantages:
This article explains how to configure search locations, set up a mobile search, create tabs and configure indexing. Enabling KeyotiKeyoti can be enabled by modifying Settings.xml to include a /Settings/Search/SearchType element as follows: <?xml version="1.0" encoding="utf-8" standalone="yes"? <Settings> ... <Search> <!-- Keyoti or Legacy --> <SearchType>Keyoti</SearchType> </Search> ... </Settings> This will enable Keyoti for all libraries and sites on the server. Document LocationsThe locations where Keyoti will look for documents to index are configured in the indexableSourceRecord.xml file. Each indexable source is configured as a local path/URL combination. Any documents found in the local path must be available in the same relative path through the URL to be included in the index. Each indexable source can be assigned multiple categories. Categories match up with the tab names defined in Settings.xml to assign results to tabs when searching. Multiple indexable sources can also share the same category. So it is possible to have a combination of global, library and site level indexable sources all show their results under a single tab on the search tool.
Indexable sources are scoped using locations, both in terms of which sites they are shown for, but also on what devices they display. Each indexable source can contain multiple location scopes, with no restriction on scope/device combinations. So it is possible to have a global, indexable source for desktop also available on a mobile for a single site. Setting up a new global document store indexable source
<t:Categories> <t:Category>Documents</t:Category> </t:Categories> In the t:Locations sub node of the new DataSource ensure there is only one t:Location node and remove its value as below. The absence of a library and site means this indexable source is global. The absence of a :mobile or :desktop modifier means this is available on both device types. <t:Locations> <t:Location></t:Location> </t:Locations> As the new document store is global, refreshing any site will cause the new store to be re-indexed. If you don't receive the expected results, consult the IndexLog.txt file in C:\Triaster\TriasterServer2011\KeyotiSearch. Creating TabsThe tabs (document categories) displayed in the Keyoti search tool and the default (first) tabs are configured per site for desktop and mobile in the Settings.xml file. <?xml version="1.0" encoding="utf-8" standalone="yes"?> <Settings> ... <PublicationSettings> ... <Library Name="triaster sample library"> ... <Site Name="prelive"> ... <SearchCategories>Process Maps,Documents</SearchCategories> <MobileSearchCategories>Process Maps,Documents</MobileSearchCategories> ... </Site> ... </Library> ... </PublicationSettings> ... </Settings> The SearchCategories element contains a comma separated list of Categories/Tabs to display on the desktop Keyoti search tool. If omitted, it will default to Process Maps,Documents. The MobileSearchCategories element contains a comma separated list of Categories/Tabs to display on the mobile Keyoti search tool. If omitted, it will default whatever is set in the SearchCategories element, if that is also omitted then it will also default to Process Maps,Documents. The first tab specified is the default tab when searches are performed (see Setting the Default Search tab). Therefore if you prefer documents to be searched first, it should be set to Documents,Process Maps. Any number of categories/tabs can be added, the only restriction is screen real estate, especially on the mobile version. Once you get more than one line of tabs, they will not align as intended. The tab names correspond with the categories defined in the indexableSourceRecord.xml file. Any indexable sources defined for the site (either global, library or site level) that have the Category defined will be displayed under that tab. Setting the Default Search tabThese instructions show how to set the Documents tab as the default tab. The same method can be used to set up any custom tab as the default.
. <Site Name="live"> <SearchCategories>Documents,Process Maps</SearchCategories> . </Site> . IndexingTriaster have developed a command-line tool that can be used to (re-)index documents. By default this is installed to C:\Triaster\TriasterServer2011\KeyotiSearch\KeyotiReindex.exe. The following command line arguments are supported:
Logging can be performed by redirecting the console applications output to a text file. This is done by appending > logfile.txt to write to create a new log file, or >> logifle.txt to append to an existing log file. Rather than output progress to the command window, progress will be written to the specified log file. Re-index Documents on PublishDocuments can be reindexed automatically after a publishing event (although this is not set by default), to follow a specific schedule or performed manually as required. Reindexing is also necessary after cloning or deleting a site/library. Re-index maps on PublishBy default, in Triaster Server, Keyoti will be (re-)indexed on publish using the PostPublishReindex.cmd file which must be modified to uncomment (remove REM) the call to KeyotiReindex.exe (in red below), by default this is installed to C:\Triaster\TriasterServer2011\KeyotiSearch\PostPublishReindex.cmd. REM Set the current directory to the one containing this CMD file cd /d %~dp0 REM Log file set LogFile=IndexLog.txt set Library=%~1 set Stage=%~2 set LibraryMapsFolder=%~3 set MapsFolder=%~4 REM KeyotiReindex.exe /l:"%Library%" /s:"%Stage%" > %LogFile% This will enable (re-)indexing on publish, for any index-able source that relates to the published site (site level, library level or global) for all category types. If you wish to restrict it to just (re-)index published html for example, you would need to modify the call to KeyotiReindex.exe to include /C:"Process Maps". On DemandBy default, in Triaster Server, Keyoti will (re-)index using the Refresh Document Search option in the Administration tool. To customise what Keyoti does when the Refresh Document Search option in the Administration tool is used, you need to modify the DocumentReindex.cmd file, by default this is installed to C:\Triaster\TriasterServer2011\KeyotiSearch\DocumentReindex.cmd. The DocumentReindex.cmd file is similar to the PostPublishReindex.cmd file above in its structure. SchedulingBecause a (re-)index can lock the index directory, it is not possible to run multiple (re-)indexes at the same time. Therefore it is not advisable to schedule calls to the DocumentReindex.cmd file directly, as they may conflict with a scheduled publication's post publish (re-)index and cause one or the other not to happen due to the index directory being locked. The solution is to make use of the PublicationServer's queuing mechanism. When using the Refresh Document Search option in the Administration tool, a queue file is created in the PublicationServer's queue folder (default is C:\Triaster\TriasterServer2011\Queue). The format of the queue file is library_site.keyotitask, replacing library and site with the library and site to (re-)index. Scheduling the creation of this file will ensure it is queued alongside any publications that may be taking place at the same time. CloningWhen cloning a Library or Site, any index-able sources for Keyoti (in the indexableSourceRecord.xml file) will be cloned as appropriate, unless the DataSource already covers the new Library or Site, by being global or library level for a site clone. If the DataSource does not already cover the new Library or Site, then if the location of the DataSource is underneath the Library or Site being cloned, a new DataSource record is added. Otherwise, if the DataSource is not underneath the Library or Site being cloned, a new t:Location element is added to the existing DataSource record to enable it for the cloned Library or Site. A (re-)index will need to be performed following a publish for any of these changes to appear on the Keyoti search tool. DeletingWhen deleting a Library or Site, any t:Location elements are removed as appropriate, and if the DataSource is exclusive to the Library or Site being deleted, the DataSource will be removed. A (re-)index of any other Library or Site will need to happen before the records are completely removed from the index, but as the Library or Site has been deleted, there should be no way to bring any orphaned documents up in a search unless someone modifies the address bar in a browser to specify the deleted Library or Site. |